home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Diamond Collection / The Diamond Collection (Software Vault)(Digital Impact).ISO / cdr23 / commo642.zip / ADDENDUM.DOC < prev    next >
Text File  |  1995-03-18  |  5KB  |  138 lines

  1.  
  2.  
  3.  
  4.  
  5.                               {COMMO} 6.42 Addendum
  6.                               _____________________
  7.  
  8.      This Addendum contains the major additions and/or changes to the
  9.      {COMMO} 6.4/6.41 documentation.  Print out this file and keep it with
  10.      your printed manual.  There is a complete list of changes (major and
  11.      minor) in the file HISTORY.
  12.  
  13.  
  14.      ===============================
  15.      In the User Guide and Reference
  16.      ===============================
  17.  
  18.           (No major changes)
  19.  
  20.  
  21.      ==============================
  22.      In the Macro Programming Guide
  23.      ==============================
  24.  
  25.      New or Changed Function Descriptions
  26.      ------------------------------------
  27.  
  28.      ===  BEEP  ===
  29.  
  30.      Default key:   none
  31.      Description:   Play a sequence of sounds.
  32.  
  33.      Examples:
  34.  
  35.           {beep 36,440,18,523}
  36.                Play an A note for two seconds followed by a C note for one
  37.                second.
  38.  
  39.           {beep}
  40.                Default is a short beep sound.
  41.  
  42.      Listed arguments are treated as pairs.  The first number of each pair
  43.      is the duration of the sound in 18ths of a second (system clock
  44.      ticks).  The second number is the frequency in Hz (0 to 19 is
  45.      silence).
  46.  
  47.  
  48.  
  49.      Here is a frequency chart for five octaves:
  50.  
  51.           C         131     262     523     1040     2093
  52.           C#/Db     139     277     554     1103     2217
  53.           D         147     294     587     1176     2349
  54.           D#/Eb     156     311     622     1241     2489
  55.           E         165     330     659     1311     2637
  56.           F         175     349     698     1391     2794
  57.           F#/Gb     185     370     740     1488     2960
  58.           G         196     392     784     1568     3136
  59.           G#/Ab     208     415     831     1662     3322
  60.           A         220     440     880     1760     3520
  61.           A#/Bb     233     466     932     1866     3729
  62.           B         248     494     988     1973     3951
  63.  
  64.  
  65.      =================
  66.      In the Appendices
  67.      =================
  68.  
  69.      Under "Appendix B  {COMMO} and Multi-Tasking"
  70.      ---------------------------------------------
  71.  
  72.      -----=====  OS/2 and Windows
  73.  
  74.      {COMMO} will auto-detect the presence of OS/2 or Windows.  As much
  75.      processing time as possible will be returned to the system for use by
  76.      other tasks.
  77.  
  78.      As of this writing, users are reporting improved performance under
  79.      OS/2 with Ray Gwinn's SIO/VSIO replacement serial port drivers.  These
  80.      are available on CompuServe (go os2user, lib 3), Exec-PC (OS/2
  81.      collection) and many other BBS systems.  Look for SIOnnn.ZIP.
  82.  
  83.      Suggested settings for OS/2 DOS session:
  84.  
  85.           COM_DIRECT_ACCESS        On
  86.           COM_HOLD                 On
  87.           HW_TIMER                 On
  88.           IDLE_SECONDS             60
  89.           IDLE_SENSITIVITY         100
  90.           INT_DURING_IO            On
  91.  
  92.  
  93.  
  94.      Under "Appendix K  {COMMO} Support Files"
  95.      -----------------------------------------
  96.  
  97.      ----------  Using an External Editor
  98.  
  99.      (Note that this feature is unavailable during shareware evaluation.)
  100.  
  101.      An external text editor may be used to edit the Dialing Directory and
  102.      Macro Files directly from their respective windows.  Your editor's
  103.      command line is first defined in the reserved variable "_exted".  Then
  104.      you simply press Alt-E instead of "E" to use your editor instead of
  105.      the Internal Editor.
  106.  
  107.      TIPS on using an external editor:
  108.  
  109.       *   The file will be saved prior to running the editor (if changed),
  110.           and it will be reloaded upon return.
  111.  
  112.       *   Two built-in variables provide the filename and the line number
  113.           to be used on the editor's command line:
  114.  
  115.                _edf      The filename of the last file displayed (or
  116.                          current).
  117.  
  118.                _edl      The current line number of the cursor within the
  119.                          file.
  120.  
  121.           These may be used as in this Setup File example:
  122.  
  123.                {set _exted,c:\util\editor.exe %_hom%%_edf /n%_edl}
  124.  
  125.           NOTE:  The "_exted" variable may also be defined in a macro. 
  126.  
  127.       *   The command line is run as if it appeared in an {exec-DN...}
  128.           function -- i.e., direct, no clear and no swap.  This makes it as
  129.           fast and  seamless as possible.  If you need to use the DOS
  130.           command processor (e.g., to run a batch file or to search the
  131.           path), define the command like this:
  132.  
  133.                {set _exted,c:\command.com /c editor %_hom%%_edf /n%_edl}
  134.  
  135.  
  136.                               - end -
  137.  
  138.